9132556dde7858c01db56d721562b5217b53c0c8,src/com/innovattic/view/FontTextView.java,FontTextView,FontTextView,#Context#AttributeSet#number#,23

Before Change


	public FontTextView(Context context, AttributeSet attrs, int defStyle)
	{
		super(context, attrs, defStyle);
		TypefaceManager.applyFont(this, attrs, defStyle);
	}
	
}

After Change


	public FontTextView(Context context, AttributeSet attrs, int defStyle)
	{
		super(context, attrs, defStyle);
		if (!isInEditMode())
			TypefaceManager.applyFont(this, attrs, defStyle);
	}
	
}